body {
  background-repeat:no-repeat;
  background-position:center;
  background-attachment:fixed;
  background-size:cover;
  background-color: #fdf6b2;
}

img{
    width:170px;
  }

  .header{
   
    color: #fdf6b2;
    opacity: 0.8;
    border-radius:30px;
    background-color: #fdf6b2;


  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
    
}

/*Big text and video*/
.animated-text {
  font-family: 'Itim';
  font-size: 80px;
  color: #ffcc00;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeInText 3s ease-out forwards;
}

@keyframes fadeInText {
  0% {
      opacity: 0;
      transform: translate(-50%, -60%);
  }
  100% {
      opacity: 1;
      transform: translate(-50%, -50%);
  }
}

.nav-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Itim';
}

nav .logo img {
  height: 40px;
  width: auto;
}

nav a {
  text-decoration: none;
  color: #fff;
  padding: 14px 30px;
  margin: 0 20px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  background-color: #ffd700;
  color: #333;
  transform: scale(1.05);
}



/* FAQ Container */
.faq-container {
    opacity: 0.95;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    /* Light honey color */
    background-color: #fffbee; 
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Itim';
    /* Yellow border */
    border: 3px solid #ffcc00; 
}

.faq-header {
    font-size: 36px;
    text-align: center;
    /* Bee-yellow */
    color: #ffcc00; 
    margin-bottom: 30px;
    font-weight: bold;
    font-family: 'Itim';
    text-shadow: 2px 2px #333;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 20px;
    /* Honey gold border */
    border-bottom: 2px solid #ffd700; 
    padding-bottom: 15px;
    font-family: 'Itim';
}

.faq-question {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 15px;
    /* Pale yellow background */
    background-color: #fff8dc; 
    /* Gold border */
    border: 1px solid #ffd700; 
    border-radius: 8px;
    font-family: 'Itim', cursive;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #ffe066; 
}

.faq-answer {
    /* Answers are hidden by default */
    display: none; 
    padding: 15px;
    border-left: 5px solid #ffcc00; 
    background-color: #fffbee;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Itim', cursive;
    font-size: 16px;
    line-height: 1.6;
}

.faq-answer5 {
    /* Different for final answer because it has white space beneath; less padding*/
    display: none; 
    padding: 15px;
    border-left: 5px solid #ffcc00;
    background-color: #fffbee;
    margin-top: 10px;
    font-family: 'Itim';
    font-size: 16px;
    line-height: 1.6;
}
